home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / IMS16.ZIP / MSREG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-11-27  |  477 b   |  21 lines

  1. unit msreg;
  2.  
  3. interface
  4.  
  5. uses msmsg, mssmtp, mspop3, MsDef, DsgnIntf, Classes,
  6.      msaddrpe, msattpe, aghttp;
  7.  
  8. procedure Register;
  9.  
  10. implementation
  11.  
  12. procedure Register;
  13. begin
  14.   RegisterComponents('Internet Mail Suite',[TmsMessage,TmsSMTP,TmsPOP,
  15.                      TmsRemotePOP,TagHTTP]);
  16.   RegisterPropertyEditor(TypeInfo(TmsAddressList),nil,'',TmsAddressListProperty);
  17.   RegisterPropertyEditor(TypeInfo(TmsAttList),nil,'',TmsAttListProperty);
  18. end;
  19.  
  20. end.
  21.